home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Views / RootPane.h < prev    next >
Text File  |  1997-06-28  |  272b  |  23 lines

  1. // RootPane.h
  2.  
  3. #ifndef RootPane_h
  4. #define RootPane_h
  5.  
  6. #ifndef Pane_h
  7. #include "Pane.h"
  8. #endif
  9.  
  10. class WindowObject;
  11.  
  12. class RootPane: public Pane
  13.   {
  14.     public:
  15.         RootPane( WindowObject& );
  16.         
  17.         virtual void Clip( RegionObject& ) const;
  18.         
  19.         void UpdateBounds();
  20.   };
  21.  
  22. #endif
  23.